package org.adoxx.all2abl.service.webservice; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.WebService; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.ws.RequestWrapper; import javax.xml.ws.ResponseWrapper; /** * This class was generated by Apache CXF 2.7.3 * 2013-03-22T13:01:17.717+01:00 * Generated source version: 2.7.3 * */ @WebService(targetNamespace = "http://webservice.service.all2abl.adoxx.org/", name = "ALL2ABLWebService") @XmlSeeAlso({ObjectFactory.class}) public interface ALL2ABLWebService { @WebResult(name = "return", targetNamespace = "") @RequestWrapper(localName = "convertALL2ABL", targetNamespace = "http://webservice.service.all2abl.adoxx.org/", className = "org.adoxx.all2abl.service.webservice.ConvertALL2ABL") @WebMethod(action = "urn:ConvertALL2ABL") @ResponseWrapper(localName = "convertALL2ABLResponse", targetNamespace = "http://webservice.service.all2abl.adoxx.org/", className = "org.adoxx.all2abl.service.webservice.ConvertALL2ABLResponse") public byte[] convertALL2ABL( @WebParam(name = "fileDescription", targetNamespace = "") java.lang.String fileDescription, @WebParam(name = "version", targetNamespace = "") java.lang.String version, @WebParam(name = "ALLFile", targetNamespace = "") byte[] allFile, @WebParam(name = "ALLFileName", targetNamespace = "") java.lang.String allFileName ); }